home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-19 / iritsm3s.zip / DUMMY.C < prev    next >
C/C++ Source or Header  |  1992-01-25  |  1KB  |  43 lines

  1. /*****************************************************************************
  2. *   "Irit" - the 3d polygonal solid modeller.                     *
  3. *                                         *
  4. * Written by:  Gershon Elber            IBM PC Ver 0.1,    Mar. 1989    *
  5. ******************************************************************************
  6. * Dummy routine, to be linked instead of real ones - used in the pressed     *
  7. * environment the IBM-PC created: convert to a dummy.lib (large model) and   *
  8. * link it...                                     *
  9. *****************************************************************************/
  10.  
  11. #include <stdio.h>
  12. #include <graphgen.h>
  13.  
  14. char *BooleanOR()
  15. {
  16.     WndwInputWindowPutStr("BooleanOR is NOT linked", RED);
  17.     return NULL;
  18. }
  19.  
  20. char *BooleanSUB()
  21. {
  22.     WndwInputWindowPutStr("BooleanSUB is NOT linked", RED);
  23.     return NULL;
  24. }
  25.  
  26. char *BooleanAND()
  27. {
  28.     WndwInputWindowPutStr("BooleanAND is NOT linked", RED);
  29.     return NULL;
  30. }
  31.  
  32. char *BooleanNEG()
  33. {
  34.     WndwInputWindowPutStr("BooleanNEG is NOT linked", RED);
  35.     return NULL;
  36. }
  37.  
  38. char *CleanUpPolygonList()
  39. {
  40.     WndwInputWindowPutStr("CleanUpPolygonList is NOT linked", RED);
  41.     return NULL;
  42. }
  43.